home *** CD-ROM | disk | FTP | other *** search
/ Supercompiler 1997 / SUPERCOMPILER97.iso / Delphi 3.0 / DATA.Z / STRINGGP.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1997-01-30  |  546 b   |  35 lines

  1. unit StringGP;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls, ExtCtrls, Buttons;
  8.  
  9. type
  10.   TStringGridXAbout = class(TForm)
  11.     CtlImage: TSpeedButton;
  12.     NameLbl: TLabel;
  13.     OkBtn: TButton;
  14.     CopyrightLbl: TLabel;
  15.     DescLbl: TLabel;
  16.   end;
  17.  
  18. procedure ShowStringGridXAbout;
  19.  
  20. implementation
  21.  
  22. {$R *.DFM}
  23.  
  24. procedure ShowStringGridXAbout;
  25. begin
  26.   with TStringGridXAbout.Create(nil) do
  27.     try
  28.       ShowModal;
  29.     finally
  30.       Free;
  31.     end;
  32. end;
  33.  
  34. end.
  35.